const github.com/klauspost/compress/zstd.zstdMinMatch
47 uses
github.com/klauspost/compress/zstd (current package)
blockenc.go#L490: b.encodeRLE(org[0], b.sequences[0].matchLen+zstdMinMatch+seq.litLen)
enc_best.go#L41: mlc := mlCode(uint32(m.length - zstdMinMatch))
enc_best.go#L143: if len(src) > zstdMinMatch {
enc_best.go#L147: blk.sequences = append(blk.sequences, seq{litLen: 1, matchLen: uint32(len(src)-1) - zstdMinMatch, offset: 1 + 3})
enc_best.go#L365: seq.matchLen = uint32(best.length - zstdMinMatch)
enc_best.go#L426: seq.matchLen = uint32(l - zstdMinMatch)
enc_better.go#L110: if len(src) > zstdMinMatch {
enc_better.go#L114: blk.sequences = append(blk.sequences, seq{litLen: 1, matchLen: uint32(len(src)-1) - zstdMinMatch, offset: 1 + 3})
enc_better.go#L184: seq.matchLen = uint32(length - zstdMinMatch)
enc_better.go#L194: for repIndex > tMin && start > startLimit && src[repIndex-1] == src[start-1] && seq.matchLen < maxMatchLength-zstdMinMatch-1 {
enc_better.go#L243: seq.matchLen = uint32(length - zstdMinMatch)
enc_better.go#L253: for repIndex > tMin && start > startLimit && src[repIndex-1] == src[start-1] && seq.matchLen < maxMatchLength-zstdMinMatch-1 {
enc_better.go#L487: seq.matchLen = uint32(l - zstdMinMatch)
enc_better.go#L537: seq.matchLen = uint32(l) - zstdMinMatch
enc_better.go#L704: seq.matchLen = uint32(length - zstdMinMatch)
enc_better.go#L714: for repIndex > tMin && start > startLimit && src[repIndex-1] == src[start-1] && seq.matchLen < maxMatchLength-zstdMinMatch-1 {
enc_better.go#L765: seq.matchLen = uint32(length - zstdMinMatch)
enc_better.go#L775: for repIndex > tMin && start > startLimit && src[repIndex-1] == src[start-1] && seq.matchLen < maxMatchLength-zstdMinMatch-1 {
enc_better.go#L1003: seq.matchLen = uint32(l - zstdMinMatch)
enc_better.go#L1058: seq.matchLen = uint32(l) - zstdMinMatch
enc_dfast.go#L143: seq.matchLen = uint32(length - zstdMinMatch)
enc_dfast.go#L153: for repIndex > tMin && start > startLimit && src[repIndex-1] == src[start-1] && seq.matchLen < maxMatchLength-zstdMinMatch-1 {
enc_dfast.go#L276: seq.matchLen = uint32(l - zstdMinMatch)
enc_dfast.go#L336: seq.matchLen = uint32(l) - zstdMinMatch
enc_dfast.go#L450: seq.matchLen = uint32(length - zstdMinMatch)
enc_dfast.go#L580: seq.matchLen = uint32(l - zstdMinMatch)
enc_dfast.go#L641: seq.matchLen = uint32(l) - zstdMinMatch
enc_dfast.go#L791: seq.matchLen = uint32(length - zstdMinMatch)
enc_dfast.go#L801: for repIndex > tMin && start > startLimit && src[repIndex-1] == src[start-1] && seq.matchLen < maxMatchLength-zstdMinMatch-1 {
enc_dfast.go#L925: seq.matchLen = uint32(l - zstdMinMatch)
enc_dfast.go#L995: seq.matchLen = uint32(l) - zstdMinMatch
enc_fast.go#L137: seq.matchLen = uint32(length - zstdMinMatch)
enc_fast.go#L147: for repIndex > sMin && start > startLimit && src[repIndex-1] == src[start-1] && seq.matchLen < maxMatchLength-zstdMinMatch {
enc_fast.go#L233: seq.matchLen = uint32(l - zstdMinMatch)
enc_fast.go#L259: seq.matchLen = uint32(l) - zstdMinMatch
enc_fast.go#L375: seq.matchLen = uint32(length - zstdMinMatch)
enc_fast.go#L473: seq.matchLen = uint32(l - zstdMinMatch)
enc_fast.go#L499: seq.matchLen = uint32(l) - zstdMinMatch
enc_fast.go#L637: seq.matchLen = uint32(length - zstdMinMatch)
enc_fast.go#L647: for repIndex > sMin && start > startLimit && src[repIndex-1] == src[start-1] && seq.matchLen < maxMatchLength-zstdMinMatch {
enc_fast.go#L733: seq.matchLen = uint32(l - zstdMinMatch)
enc_fast.go#L760: seq.matchLen = uint32(l) - zstdMinMatch
seqdec.go#L30: return fmt.Sprint("litLen:", s.litLen, ", matchLen:", s.matchLen+zstdMinMatch, ", offset: INVALID (0)")
seqdec.go#L32: return fmt.Sprint("litLen:", s.litLen, ", matchLen:", s.matchLen+zstdMinMatch, ", offset:", s.offset, " (repeat)")
seqdec.go#L34: return fmt.Sprint("litLen:", s.litLen, ", matchLen:", s.matchLen+zstdMinMatch, ", offset:", s.offset-3, " (new)")
snappy.go#L393: matchLen: uint32(length) - zstdMinMatch,
zstd.go#L37: const zstdMinMatch = 3
 |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |